Home
Ray
Articles
This Old House
Family History
Try Catch
SAMPLE CODE
function testTryCatch() { try{ var greeting = "Hello world!"; aler(greeting); // this is the error to catch. It should say alert } catch(err) { alert(err); } }